home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2000 #4
/
Amiga Plus CD - 2000 - No. 4.iso
/
Tools
/
GraKa
/
VLRecNG
/
Inst
/
VLRec_NG
/
StarGate
/
Developers
/
stargate.h
< prev
next >
Wrap
C/C++ Source or Header
|
1999-12-18
|
580b
|
27 lines
/* stargate.h - Includefile
(c) 1999 Felix Schwarz. All rights reserved.
*/
#ifndef _STARGATE_H
#define _STARGATE_H 1
/* The classic Stargate-Message */
struct SGMessage
{
struct Message msg;
struct fsbitmap *fsb;
};
/* The extended Stargate-Message */
struct SGMessageExt
{
struct Message msg;
ULONG type; /* See defines below */
APTR data;
};
#define SG_LOAD_IMAGE 1L /* data is a pointer to a NULL-terminated string containing
the filename of a picture to load */
#endif /* _STARGATE_H */